From 86cb37bc563264859e9a4d6b526b66751e56e1ea Mon Sep 17 00:00:00 2001 From: alexmot Date: Thu, 4 Sep 2003 15:37:18 +0000 Subject: [PATCH] Fix imaginary memory allocation problem. --- gpsbabel/csv_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/csv_util.c b/gpsbabel/csv_util.c index 7d9487822..b07320932 100644 --- a/gpsbabel/csv_util.c +++ b/gpsbabel/csv_util.c @@ -826,7 +826,7 @@ xcsv_data_write(void) if (ol) { fprintf(xcsv_file.xcsvfp, "%s", ol); - free(ol); + xfree(ol); } else { fprintf(xcsv_file.xcsvfp, "%s", ogp->val); } -- 2.30.2